home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / OutOfPhase1.01Source / OutOfPhase Folder / EditImages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-01  |  1.5 KB  |  52 lines  |  [TEXT/KAHL]

  1. /* EditImages.h */
  2.  
  3. #ifndef Included_EditImages_h
  4. #define Included_EditImages_h
  5.  
  6. /* EditImages module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Screen */
  12. /* EventLoop */
  13.  
  14. /* the variables declared externally */
  15. #ifndef Compiling_EditImages
  16.     extern struct Bitmap*                Bits8Unselected;
  17.     extern struct Bitmap*                Bits8Selected;
  18.     extern struct Bitmap*                Bits8MouseDown;
  19.     extern struct Bitmap*                Bits16Unselected;
  20.     extern struct Bitmap*                Bits16Selected;
  21.     extern struct Bitmap*                Bits16MouseDown;
  22.     extern struct Bitmap*                MonoUnselected;
  23.     extern struct Bitmap*                MonoSelected;
  24.     extern struct Bitmap*                MonoMouseDown;
  25.     extern struct Bitmap*                StereoUnselected;
  26.     extern struct Bitmap*                StereoSelected;
  27.     extern struct Bitmap*                StereoMouseDown;
  28.     extern struct Bitmap*                PlayMouseUp;
  29.     extern struct Bitmap*                PlayMouseDown;
  30.     extern struct Bitmap*                ZoomInMouseUp;
  31.     extern struct Bitmap*                ZoomInMouseDown;
  32.     extern struct Bitmap*                ZoomOutMouseUp;
  33.     extern struct Bitmap*                ZoomOutMouseDown;
  34. #endif
  35.  
  36. /* initialize the bitmaps in memory */
  37. MyBoolean                        InitializeEditImages(void);
  38.  
  39. /* clean up the memory used by the images */
  40. void                                CleanupEditImages(void);
  41.  
  42. /* set the cursor to the sample insertion point cursor */
  43. void                                SetSampleInsertionCursor(void);
  44.  
  45. /* set the cursor to the score insertion point cursor when the cursor will INSERT */
  46. void                                SetScoreIntersticeCursor(void);
  47.  
  48. /* set the cursor to the score insertion point cursor when it will OVERLAY */
  49. void                                SetScoreOverlayCursor(void);
  50.  
  51. #endif
  52.